remove nixos directory

This commit is contained in:
Noah Masur
2022-05-01 23:39:50 -04:00
parent 6cd892f67a
commit ec0b1c4e04
14 changed files with 42 additions and 1099 deletions

View File

@ -0,0 +1,12 @@
{ config, pkgs, lib, gui, identity, ... }: {
config = lib.mkIf gui.enable {
home-manager.users.${identity.user} = {
home.packages = with pkgs; [ qbittorrent ];
};
};
}

10
modules/common.nix Normal file
View File

@ -0,0 +1,10 @@
{ pkgs, ... }: {
nix.extraOptions = "experimental-features = nix-command flakes";
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
environment.systemPackages = with pkgs; [ git vim wget curl ];
}

10
modules/editor/notes.nix Normal file
View File

@ -0,0 +1,10 @@
{ identity, ... }: {
home-manager.users.${identity.user} = {
home.sessionVariables = {
NOTES_PATH = "/home/${identity.user}/dev/personal/notes";
};
};
}

View File

@ -31,6 +31,8 @@ in {
qrencode # Generate qr codes
vimv # Batch rename files
dig # DNS lookup
# gnupg
# pass
];
home.file = {