Compare commits

..

2 Commits

Author SHA1 Message Date
10eb55920d 16 current 2025-04-23 08:01:38 25.05.20250421.c11863f 6.12.24 * 2025-04-23 08:01:40 +02:00
143bd369c4 boot windows 2025-04-23 08:00:49 +02:00
2 changed files with 31 additions and 16 deletions

24
flake.lock generated
View File

@ -23,11 +23,11 @@
]
},
"locked": {
"lastModified": 1745272532,
"narHash": "sha256-+sFbKw1vFkulKYxsAbz84N0V/goSg808IgFh8iWe/As=",
"lastModified": 1745380081,
"narHash": "sha256-bUy25YkdRfdWPxSyx22igWi6g3rd3HXKFg+yL4dfBPY=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "81541ea36d1fead4be7797e826ee325d4c19308b",
"rev": "1d0e13904bd8c444ab1595f686ede5eff377e881",
"type": "github"
},
"original": {
@ -44,11 +44,11 @@
"rust-overlay": "rust-overlay"
},
"locked": {
"lastModified": 1745233746,
"narHash": "sha256-4yE9tsO4EBf+OQJGAek5ZhgrzmjGyztKaNXY/dmJuQk=",
"lastModified": 1745320144,
"narHash": "sha256-Rbw+E3Na694sTPjNSRFHtT1o31eQXO3OLEzM+25kcME=",
"owner": "lilyinstarlight",
"repo": "nixos-cosmic",
"rev": "644a91f54a1aaa2c5b43fbfb19a6668a9685523c",
"rev": "84d7c1002734f21f150c641da095c5ce43f1cb98",
"type": "github"
},
"original": {
@ -107,11 +107,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1744932701,
"narHash": "sha256-fusHbZCyv126cyArUwwKrLdCkgVAIaa/fQJYFlCEqiU=",
"lastModified": 1745234285,
"narHash": "sha256-GfpyMzxwkfgRVN0cTGQSkTC0OHhEkv3Jf6Tcjm//qZ0=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "b024ced1aac25639f8ca8fdfc2f8c4fbd66c48ef",
"rev": "c11863f1e964833214b767f4a369c6e6a7aba141",
"type": "github"
},
"original": {
@ -142,11 +142,11 @@
]
},
"locked": {
"lastModified": 1745207416,
"narHash": "sha256-2g2TnXgJEvSvpk7ujY69pSplmM3oShhoOidZf1iHTHU=",
"lastModified": 1745289264,
"narHash": "sha256-7nt+UJ7qaIUe2J7BdnEEph9n2eKEwxUwKS/QIr091uA=",
"owner": "oxalica",
"repo": "rust-overlay",
"rev": "68a0ff1a43d08aa1ec3730e7e7d06f6da0ba630a",
"rev": "3b7171858c20d5293360042936058fb0c4cb93a9",
"type": "github"
},
"original": {

View File

@ -8,12 +8,27 @@
# Include the results of the hardware scan.
./hardware-configuration.nix
inputs.home-manager.nixosModules.default
# ../../modules/nixos/cosmic.nix
../../modules/nixos/niri.nix
../../modules/nixos/cosmic.nix
# ../../modules/nixos/niri.nix
];
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader = {
efi.canTouchEfiVariables = true;
systemd-boot = {
enable = true;
configurationLimit = 5;
consoleMode = "max";
windows = {
"nvme0n1p1" = {
title = "Windows 11";
efiDeviceHandle = "FS1";
sortKey = "a_windows";
};
};
};
};
hardware.enableAllFirmware = true;
networking.hostName = "desktop"; # Define your hostname.