restructure
This commit is contained in:
@@ -113,29 +113,6 @@
|
||||
};
|
||||
};*/
|
||||
|
||||
programs.fuse.userAllowOther = true;
|
||||
|
||||
home-manager = {
|
||||
backupFileExtension = "backup";
|
||||
extraSpecialArgs = {inherit inputs;};
|
||||
users = {
|
||||
"nathan" = lib.mkMerge [
|
||||
inputs.nathan-home-manager
|
||||
{
|
||||
config.homeconfig = {
|
||||
minimal = false;
|
||||
hyprland.enable = false;
|
||||
wal.enable = false;
|
||||
mpd.enable = true;
|
||||
calcurse.enable = true;
|
||||
rofi.enable = true;
|
||||
firefox.enable = true;
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
fonts.packages = with pkgs; [ nerd-fonts.fira-code ];
|
||||
|
||||
};
|
||||
|
||||
@@ -32,6 +32,9 @@
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
networking = {
|
||||
|
||||
hostName = "homebox";
|
||||
|
||||
nameservers = lib.mkDefault [ "1.1.1.1" "1.0.0.1" ];
|
||||
networkmanager = {
|
||||
enable = true;
|
||||
|
||||
@@ -2,9 +2,10 @@
|
||||
|
||||
flake.nixosConfigurations."homebox" = inputs.nixpkgs.lib.nixosSystem {
|
||||
|
||||
modules = [
|
||||
self.nixosModules.homebox
|
||||
self.nixosModules.homebox-hardware
|
||||
modules = with self.nixosModules; [
|
||||
(user-nathan "laptop")
|
||||
homebox
|
||||
homebox-hardware
|
||||
self.diskoConfigurations.homebox
|
||||
];
|
||||
};
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
imports = with self.nixosModules; [
|
||||
inputs.home-manager.nixosModules.default
|
||||
|
||||
self.nixosModules.default
|
||||
self.nixosModules.default
|
||||
aurora-greeter
|
||||
hyprland
|
||||
@@ -71,6 +72,9 @@
|
||||
programs.zsh.enable = true;
|
||||
|
||||
networking = {
|
||||
|
||||
hostName = "laptop";
|
||||
|
||||
nameservers = [
|
||||
"1.1.1.1"
|
||||
"1.0.0.1"
|
||||
|
||||
@@ -2,9 +2,10 @@
|
||||
|
||||
flake.nixosConfigurations."laptop" = inputs.nixpkgs.lib.nixosSystem {
|
||||
|
||||
modules = [
|
||||
self.nixosModules.laptop
|
||||
self.nixosModules.laptop-hardware
|
||||
modules = with self.nixosModules; [
|
||||
user-nathan
|
||||
laptop
|
||||
laptop-hardware
|
||||
];
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user