update
This commit is contained in:
24
modules/common/common.nix
Normal file
24
modules/common/common.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
time.timeZone = "America/Toronto";
|
||||
|
||||
nix.settings = {
|
||||
trusted-users = ["mthomson"];
|
||||
|
||||
experimental-features = ["nix-command" "flakes"];
|
||||
|
||||
substituters = [
|
||||
"https://cache.nixos.org"
|
||||
"https://nix-community.cachix.org"
|
||||
];
|
||||
|
||||
trusted-public-keys = [
|
||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||
];
|
||||
};
|
||||
|
||||
}
|
||||
@@ -17,7 +17,7 @@
|
||||
shellIntegration = {
|
||||
enableZshIntegration = true;
|
||||
};
|
||||
themeFile = "Modus_Operandi";
|
||||
themeFile = "Modus_Vivendi";
|
||||
# darwinLaunchOptions = [
|
||||
# "--single-instance"
|
||||
# ];
|
||||
|
||||
@@ -8,6 +8,8 @@
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
neovim
|
||||
|
||||
#utilities
|
||||
ripgrep
|
||||
zk
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
{pkgs, inputs, ...}: {
|
||||
environment.systemPackages = [
|
||||
inputs.neovim-nightly-overlay.packages.${pkgs.system}.default
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user