Compare commits
No commits in common. "ee6418f892dad88be4e91cfbd49697b0595ac31a" and "e74dfea6167589fc6527853b75796f739e11926f" have entirely different histories.
ee6418f892
...
e74dfea616
|
@ -30,7 +30,6 @@ with nLib; {
|
|||
nix-index
|
||||
inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.nix-init
|
||||
nix-prefetch
|
||||
nix-prefetch-git
|
||||
inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.nurl
|
||||
# sops for secrets management
|
||||
sops
|
||||
|
|
|
@ -371,14 +371,14 @@ in with lib; {
|
|||
"command": "alacritty --class alacritty-dropterm --working-directory ~ -e tmux new -A -s scratch",
|
||||
"animation": ""
|
||||
},
|
||||
"ario": {
|
||||
"command": "ario",
|
||||
"animation": ""
|
||||
},
|
||||
"spotify": {
|
||||
"command": "spotify",
|
||||
"animation": ""
|
||||
}
|
||||
"ario": {
|
||||
"command": "ario",
|
||||
"animation": ""
|
||||
},
|
||||
"spotify": {
|
||||
"command": "spotify",
|
||||
"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