Compare commits
No commits in common. "ee6418f892dad88be4e91cfbd49697b0595ac31a" and "e74dfea6167589fc6527853b75796f739e11926f" have entirely different histories.
ee6418f892
...
e74dfea616
|
@ -30,7 +30,6 @@ with nLib; {
|
||||||
nix-index
|
nix-index
|
||||||
inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.nix-init
|
inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.nix-init
|
||||||
nix-prefetch
|
nix-prefetch
|
||||||
nix-prefetch-git
|
|
||||||
inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.nurl
|
inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.nurl
|
||||||
# sops for secrets management
|
# sops for secrets management
|
||||||
sops
|
sops
|
||||||
|
|
|
@ -371,14 +371,14 @@ in with lib; {
|
||||||
"command": "alacritty --class alacritty-dropterm --working-directory ~ -e tmux new -A -s scratch",
|
"command": "alacritty --class alacritty-dropterm --working-directory ~ -e tmux new -A -s scratch",
|
||||||
"animation": ""
|
"animation": ""
|
||||||
},
|
},
|
||||||
"ario": {
|
"ario": {
|
||||||
"command": "ario",
|
"command": "ario",
|
||||||
"animation": ""
|
"animation": ""
|
||||||
},
|
},
|
||||||
"spotify": {
|
"spotify": {
|
||||||
"command": "spotify",
|
"command": "spotify",
|
||||||
"animation": ""
|
"animation": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -1,29 +0,0 @@
|
||||||
{ config, lib, pkgs, inputs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
# Setup system configuration
|
|
||||||
nathan = {
|
|
||||||
config = {
|
|
||||||
isDesktop = true;
|
|
||||||
user = "nathan.mccarty";
|
|
||||||
};
|
|
||||||
programs = {
|
|
||||||
communications.enable = false;
|
|
||||||
virtualization = false;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
# Configure the login shell
|
|
||||||
users.users."nathan.mccarty".shell = pkgs.fish;
|
|
||||||
# Setup home manager
|
|
||||||
home-manager.users."nathan.mccarty" = import ./home.nix;
|
|
||||||
# Configure nix build
|
|
||||||
nix.settings = {
|
|
||||||
cores = 8;
|
|
||||||
max-jobs = 2;
|
|
||||||
};
|
|
||||||
# Set the system name
|
|
||||||
# networking = {
|
|
||||||
# hostName = "extremophile";
|
|
||||||
# computerName = "extremophile";
|
|
||||||
# };
|
|
||||||
}
|
|
|
@ -1,22 +0,0 @@
|
||||||
{ config, lib, pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
nathan = {
|
|
||||||
programs = {
|
|
||||||
util = {
|
|
||||||
git = {
|
|
||||||
gpgSign = false;
|
|
||||||
sshSign = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
devel = {
|
|
||||||
idris2 = false;
|
|
||||||
haskell = false;
|
|
||||||
js = false;
|
|
||||||
raku = false;
|
|
||||||
python = false;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
config = { isDesktop = true; };
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in New Issue