[archive] Creates archive mount point and adds it to Altair.
This commit is contained in:
@@ -21,6 +21,7 @@ in
|
||||
"/features/gaming.nix"
|
||||
"/features/image-editing.nix"
|
||||
"/features/linux-desktop.nix"
|
||||
"/features/mounts/mcp-archive.nix"
|
||||
"/features/notes.nix"
|
||||
"/features/3d-printing.nix"
|
||||
]
|
||||
@@ -28,21 +29,22 @@ in
|
||||
(import ../../../home-manager/features/wallpaper.nix monitors)
|
||||
];
|
||||
|
||||
# This config file is needed for nix shell to allow unfree programs. I'm not
|
||||
# sure why this isn't a home-manager option.
|
||||
home.file.".config/nixpkgs/config.nix".text = ''
|
||||
{ allowUnfree = true; }
|
||||
'';
|
||||
home = {
|
||||
stateVersion = "24.11";
|
||||
username = "drew";
|
||||
homeDirectory = "/home/drew";
|
||||
|
||||
home.stateVersion = "24.11";
|
||||
|
||||
home.username = "drew";
|
||||
home.homeDirectory = "/home/drew";
|
||||
# This config file is needed for nix shell to allow unfree programs. I'm not
|
||||
# sure why this isn't a home-manager option.
|
||||
file.".config/nixpkgs/config.nix".text = ''
|
||||
{ allowUnfree = true; }
|
||||
'';
|
||||
};
|
||||
|
||||
programs.git.settings = {
|
||||
user = {
|
||||
name = "Drew Haven";
|
||||
email = "drew.haven@gmail.com";
|
||||
email = "periodic@blazestar.net";
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user