1
0
Fork 0

Compare commits

..

No commits in common. "92ccb0b490e2edaca60b7f9e66a6bcb971377b92" and "103b9c89428031616a964ed68287010f62a2c7f7" have entirely different histories.

3 changed files with 10 additions and 35 deletions

17
flake.lock generated
View file

@ -162,22 +162,6 @@
"type": "github"
}
},
"nixos-hardware": {
"locked": {
"lastModified": 1757103352,
"narHash": "sha256-PtT7ix43ss8PONJ1VJw3f6t2yAoGH+q462Sn8lrmWmk=",
"owner": "NixOS",
"repo": "nixos-hardware",
"rev": "11b2a10c7be726321bb854403fdeec391e798bf0",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "master",
"repo": "nixos-hardware",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1741379970,
@ -215,7 +199,6 @@
"agenix": "agenix",
"flake-utils": "flake-utils_2",
"home-manager": "home-manager_2",
"nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs_2"
}
},

View file

@ -12,22 +12,17 @@
flake-utils.url = "github:numtide/flake-utils";
agenix.url = "github:yaxitech/ragenix";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
};
outputs = { self, nixpkgs, home-manager, flake-utils, agenix, nixos-hardware
, ... }@inputs:
let
coreModules =
[ home-manager.nixosModules.default agenix.nixosModules.default ];
inherit (self) outputs;
outputs = { self, nixpkgs, home-manager, flake-utils, agenix, ... }@inputs:
let inherit (self) outputs;
in {
nixosConfigurations.minji = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inputs = inputs; };
modules = coreModules ++ [
nixos-hardware.nixosModules.framework-16-7040-amd
modules = [
home-manager.nixosModules.default
agenix.nixosModules.default
./nix/hosts/common/sys.nix
./nix/hosts/minji/sys.nix
];
@ -36,7 +31,7 @@
nixosConfigurations.chaewon = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inputs = inputs; };
modules = coreModules ++ [
modules = [
home-manager.nixosModules.default
agenix.nixosModules.default
./nix/hosts/common/sys.nix

View file

@ -151,10 +151,11 @@
};
};
services.swaynotificationcenter.enable = true;
# Window Manager
programs.niri.enable = true;
programs.xwayland.enable = true;
## Battery
services.power-profiles-daemon.enable = true;
services.swaynotificationcenter.enable = true;
services.tailscale = {
enable = true;
@ -172,10 +173,6 @@
};
# Programs
## Window Manager
programs.niri.enable = true;
programs.xwayland.enable = true;
programs.kdeconnect = {
enable = true;
package = pkgs.kdePackages.kdeconnect-kde;