mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-04-20 03:34:07 +02:00
aaaaaq
This commit is contained in:
parent
72060a14be
commit
149985a26b
7 changed files with 37 additions and 11 deletions
16
flake.lock
generated
16
flake.lock
generated
|
@ -16,6 +16,21 @@
|
||||||
"type": "gitlab"
|
"type": "gitlab"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"catppuccin": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1720472194,
|
||||||
|
"narHash": "sha256-CYscFEts6tyvosc1T29nxhzIYJAj/1CCEkV3ZMzSN/c=",
|
||||||
|
"owner": "catppuccin",
|
||||||
|
"repo": "nix",
|
||||||
|
"rev": "d75d5803852fb0833767dc969a4581ac13204e22",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "catppuccin",
|
||||||
|
"repo": "nix",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"clan-core": {
|
"clan-core": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"disko": [
|
"disko": [
|
||||||
|
@ -549,6 +564,7 @@
|
||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
|
"catppuccin": "catppuccin",
|
||||||
"disko": "disko",
|
"disko": "disko",
|
||||||
"firefox-addons": "firefox-addons",
|
"firefox-addons": "firefox-addons",
|
||||||
"home-manager": "home-manager",
|
"home-manager": "home-manager",
|
||||||
|
|
|
@ -42,6 +42,7 @@
|
||||||
url = "gitlab:simple-nixos-mailserver/nixos-mailserver";
|
url = "gitlab:simple-nixos-mailserver/nixos-mailserver";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
catppuccin.url = "github:catppuccin/nix";
|
||||||
|
|
||||||
# Packages
|
# Packages
|
||||||
tela-icon-theme = {
|
tela-icon-theme = {
|
||||||
|
|
|
@ -63,5 +63,11 @@ in
|
||||||
videos = "${config.home.homeDirectory}/Videos";
|
videos = "${config.home.homeDirectory}/Videos";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
qt = {
|
||||||
|
enable = true;
|
||||||
|
style.name = "kvantum";
|
||||||
|
platformTheme.name = "kvantum";
|
||||||
|
};
|
||||||
|
gtk.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,5 +28,6 @@
|
||||||
self.inputs.home-manager.nixosModules.home-manager
|
self.inputs.home-manager.nixosModules.home-manager
|
||||||
self.inputs.nixos-generators.nixosModules.all-formats
|
self.inputs.nixos-generators.nixosModules.all-formats
|
||||||
self.inputs.sops-nix.nixosModules.sops
|
self.inputs.sops-nix.nixosModules.sops
|
||||||
|
self.inputs.catppuccin.nixosModules.catppuccin
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -85,7 +85,10 @@ in
|
||||||
useGlobalPkgs = true;
|
useGlobalPkgs = true;
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
backupFileExtension = "backup";
|
backupFileExtension = "backup";
|
||||||
sharedModules = [ self.outputs.homeManagerModules.default ];
|
sharedModules = [
|
||||||
|
self.outputs.homeManagerModules.default
|
||||||
|
self.inputs.catppuccin.homeManagerModules.catppuccin
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.services.nix-daemon.serviceConfig.LimitNOFILE = lib.mkForce 1048576000;
|
systemd.services.nix-daemon.serviceConfig.LimitNOFILE = lib.mkForce 1048576000;
|
||||||
|
|
|
@ -78,6 +78,11 @@ in
|
||||||
sway.enable = true;
|
sway.enable = true;
|
||||||
firefox.enable = config.jopejoe1.gui.enable;
|
firefox.enable = config.jopejoe1.gui.enable;
|
||||||
};
|
};
|
||||||
|
catppuccin = {
|
||||||
|
enable = true;
|
||||||
|
flavor = "frappe";
|
||||||
|
accent = "mauve";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
./hardware.nix
|
./hardware.nix
|
||||||
nixos-hardware.nixosModules.common-cpu-intel
|
nixos-hardware.nixosModules.common-cpu-intel
|
||||||
#nixos-hardware.nixosModules.common-gpu-intel
|
#nixos-hardware.nixosModules.common-gpu-intel
|
||||||
#nixos-hardware.nixosModules.common-gpu-nvidia
|
nixos-hardware.nixosModules.common-gpu-nvidia
|
||||||
nixos-hardware.nixosModules.common-pc
|
nixos-hardware.nixosModules.common-pc
|
||||||
nixos-hardware.nixosModules.common-hidpi
|
nixos-hardware.nixosModules.common-hidpi
|
||||||
nixos-hardware.nixosModules.common-pc-ssd
|
nixos-hardware.nixosModules.common-pc-ssd
|
||||||
|
@ -165,15 +165,9 @@
|
||||||
"aarch64-linux"
|
"aarch64-linux"
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.nix-ld = {
|
catppuccin = {
|
||||||
enable = true;
|
enable = true;
|
||||||
libraries = with pkgs; [
|
flavor = "frappe";
|
||||||
libz
|
accent = "mauve";
|
||||||
xz
|
|
||||||
xorg.libX11
|
|
||||||
freetype
|
|
||||||
zstd
|
|
||||||
dbus
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue