Compare commits

..

No commits in common. "10eb55920db1f3af185298754ca619fdd243527a" and "7c46fef37139d652494c803fdce21bff05b48478" have entirely different histories.

2 changed files with 16 additions and 31 deletions

24
flake.lock generated
View File

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

View File

@ -8,27 +8,12 @@
# Include the results of the hardware scan. # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
inputs.home-manager.nixosModules.default inputs.home-manager.nixosModules.default
../../modules/nixos/cosmic.nix # ../../modules/nixos/cosmic.nix
# ../../modules/nixos/niri.nix ../../modules/nixos/niri.nix
]; ];
# Bootloader. # Bootloader.
boot.loader = { boot.loader.systemd-boot.enable = true;
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. networking.hostName = "desktop"; # Define your hostname.