Compare commits
15 commits
7cae2b99d0
...
6a360706ce
Author | SHA1 | Date | |
---|---|---|---|
6a360706ce | |||
74b1da0ea0 | |||
85d7187c17 | |||
4c3cdf87d2 | |||
492a7de4d9 | |||
5d2e0e3959 | |||
00a1c32579 | |||
5208197533 | |||
1088c4c482 | |||
6f7967de10 | |||
f1cd92c632 | |||
73459b2b38 | |||
ec259650e7 | |||
433f83ea80 | |||
5895f7ab51 |
3 changed files with 12 additions and 4 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/flake.lock
|
|
@ -11,6 +11,10 @@
|
||||||
};
|
};
|
||||||
snowflakeos-modules.url = "github:snowflakelinux/snowflakeos-modules";
|
snowflakeos-modules.url = "github:snowflakelinux/snowflakeos-modules";
|
||||||
nixos-hardware.url = "github:nixos/nixos-hardware/master";
|
nixos-hardware.url = "github:nixos/nixos-hardware/master";
|
||||||
|
home-manager = {
|
||||||
|
url = "github:nix-community/home-manager";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs:
|
outputs = inputs:
|
||||||
|
|
|
@ -17,9 +17,10 @@ let
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
./hardware.nix
|
./hardware.nix
|
||||||
];
|
# inputs.home-manager.nixosModules.home-manager
|
||||||
|
];
|
||||||
|
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
|
||||||
|
@ -60,7 +61,7 @@ in {
|
||||||
|
|
||||||
# Enable the KDE Plasma Desktop Environment.
|
# Enable the KDE Plasma Desktop Environment.
|
||||||
services.displayManager.sddm.enable = true;
|
services.displayManager.sddm.enable = true;
|
||||||
services.xserver.desktopManager.plasma5.enable = true;
|
services.desktopManager.plasma6.enable = true;
|
||||||
|
|
||||||
# Configure keymap
|
# Configure keymap
|
||||||
services.xserver.xkb = {
|
services.xserver.xkb = {
|
||||||
|
@ -116,7 +117,9 @@ in {
|
||||||
vscodium
|
vscodium
|
||||||
logseq
|
logseq
|
||||||
ungoogled-chromium
|
ungoogled-chromium
|
||||||
|
zed-editor # Editor
|
||||||
];
|
];
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
services.syncthing = {
|
services.syncthing = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue