mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-04-18 19:24:09 +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"
|
||||
}
|
||||
},
|
||||
"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": {
|
||||
"inputs": {
|
||||
"disko": [
|
||||
|
@ -549,6 +564,7 @@
|
|||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"catppuccin": "catppuccin",
|
||||
"disko": "disko",
|
||||
"firefox-addons": "firefox-addons",
|
||||
"home-manager": "home-manager",
|
||||
|
|
|
@ -42,6 +42,7 @@
|
|||
url = "gitlab:simple-nixos-mailserver/nixos-mailserver";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
catppuccin.url = "github:catppuccin/nix";
|
||||
|
||||
# Packages
|
||||
tela-icon-theme = {
|
||||
|
|
|
@ -63,5 +63,11 @@ in
|
|||
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.nixos-generators.nixosModules.all-formats
|
||||
self.inputs.sops-nix.nixosModules.sops
|
||||
self.inputs.catppuccin.nixosModules.catppuccin
|
||||
];
|
||||
}
|
||||
|
|
|
@ -85,7 +85,10 @@ in
|
|||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
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;
|
||||
|
|
|
@ -78,6 +78,11 @@ in
|
|||
sway.enable = true;
|
||||
firefox.enable = config.jopejoe1.gui.enable;
|
||||
};
|
||||
catppuccin = {
|
||||
enable = true;
|
||||
flavor = "frappe";
|
||||
accent = "mauve";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
./hardware.nix
|
||||
nixos-hardware.nixosModules.common-cpu-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-hidpi
|
||||
nixos-hardware.nixosModules.common-pc-ssd
|
||||
|
@ -165,15 +165,9 @@
|
|||
"aarch64-linux"
|
||||
];
|
||||
|
||||
programs.nix-ld = {
|
||||
catppuccin = {
|
||||
enable = true;
|
||||
libraries = with pkgs; [
|
||||
libz
|
||||
xz
|
||||
xorg.libX11
|
||||
freetype
|
||||
zstd
|
||||
dbus
|
||||
];
|
||||
flavor = "frappe";
|
||||
accent = "mauve";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue