This commit is contained in:
Vivian 2022-09-16 10:17:53 +02:00
parent 90e65ad372
commit 4038a49191
4 changed files with 30 additions and 22 deletions

View file

@ -365,11 +365,11 @@
"utils": "utils_2" "utils": "utils_2"
}, },
"locked": { "locked": {
"lastModified": 1663099612, "lastModified": 1663227421,
"narHash": "sha256-ucokjFDRwCFWbcGiqxz0mfHv82UqwyW7RXY6ZgKSl80=", "narHash": "sha256-8M2ZQPLQw0CUylKbF8pgDMQ5vxOH4i0rxwUhtPIsf7Q=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "60c6bfe322944d04bb38e76b64effcbd01258824", "rev": "5408e27961599b1350b651f88715daf6e67244a7",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -384,11 +384,11 @@
"wlroots": "wlroots" "wlroots": "wlroots"
}, },
"locked": { "locked": {
"lastModified": 1663104400, "lastModified": 1663169416,
"narHash": "sha256-tWz8UAPrxxR5fiRWIU8vHPHAGpY13dRiD2UgNWrFK1I=", "narHash": "sha256-BGN7XiiLx1D03L5j6OL7WPknxlt5cSejqfR+xQXpv5E=",
"owner": "hyprwm", "owner": "hyprwm",
"repo": "Hyprland", "repo": "Hyprland",
"rev": "ae2173f703e8d61de953d48cc40565ba0bc9d5f7", "rev": "037d4ed422bb3bb34617f444a360a8abab6863cb",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -583,16 +583,16 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1663087123, "lastModified": 1663311223,
"narHash": "sha256-cNIRkF/J4mRxDtNYw+9/fBNq/NOA2nCuPOa3EdIyeDs=", "narHash": "sha256-xWWkGBlgzG+Vpw1Fv62bj2lT+lSa5M6q8eEmNWn8j/0=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "9608ace7009ce5bc3aeb940095e01553e635cbc7", "rev": "f5357321bace1f2b8f47868414f9ff420cbef8c3",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "NixOS", "owner": "NixOS",
"ref": "nixos-unstable", "ref": "master",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }
@ -769,11 +769,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1662982457, "lastModified": 1663155670,
"narHash": "sha256-FkllT92wW49B9N2Q2p9Yq0luMvrhVcJ5aGfaZnm4mdI=", "narHash": "sha256-+bjqtiZEZPjwoBlxlD9C/2Y3WL16u2bMDcu/PNceVMc=",
"owner": "serokell", "owner": "serokell",
"repo": "serokell.nix", "repo": "serokell.nix",
"rev": "14bd44d7d365cdbb4262eec4d92a8f70b38eaece", "rev": "e49106cb1aa23d5f2bd8c76625c90c51dd4017bb",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -815,11 +815,11 @@
}, },
"utils_2": { "utils_2": {
"locked": { "locked": {
"lastModified": 1653893745, "lastModified": 1659877975,
"narHash": "sha256-0jntwV3Z8//YwuOjzhV2sgJJPt+HY6KhU7VZUL0fKZQ=", "narHash": "sha256-zllb8aq3YO3h8B/U0/J1WBgAL8EX5yWf5pMj3G0NAmc=",
"owner": "numtide", "owner": "numtide",
"repo": "flake-utils", "repo": "flake-utils",
"rev": "1ed9fb1935d260de5fe1c2f7ee0ebaae17ed2fa1", "rev": "c0e246b9b83f637f4681389ecabcb2681b4f3af0",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -6,7 +6,7 @@
# * https://git.voidcorp.nl/j00lz/nixos-configs/src/branch/main/flake.nix # * https://git.voidcorp.nl/j00lz/nixos-configs/src/branch/main/flake.nix
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; nixpkgs.url = "github:NixOS/nixpkgs/master";
colmena.url = "github:zhaofengli/colmena"; colmena.url = "github:zhaofengli/colmena";
colmena.inputs.nixpkgs.follows = "nixpkgs"; colmena.inputs.nixpkgs.follows = "nixpkgs";

View file

@ -80,7 +80,11 @@ in
boot.kernelPackages = pkgs.linuxPackages_latest; boot.kernelPackages = pkgs.linuxPackages_latest;
# Enable networking # Enable networking
networking.networkmanager.enable = true; networking.networkmanager = {
enable = true;
wifi.backend = "iwd";
firewallBackend = "nftables";
};
networking.interfaces.wlp0s20f3.useDHCP = true; networking.interfaces.wlp0s20f3.useDHCP = true;
fileSystems."/".options = [ "compress=zstd" ]; fileSystems."/".options = [ "compress=zstd" ];

View file

@ -77,6 +77,9 @@
programs.firefox = { programs.firefox = {
enable = true; enable = true;
package = pkgs.firefox-devedition-bin; package = pkgs.firefox-devedition-bin;
# profiles.dev-edition-default = {
# isDefault = true;
# };
}; };
programs.vscode = { programs.vscode = {
@ -101,11 +104,12 @@
}; };
}; };
programs.zsh.sessionVariables = { programs.zsh = {
DIRENV_LOG_FORMAT = ""; enable = true;
sessionVariables = {
DIRENV_LOG_FORMAT = "";
};
}; };
programs.zsh.enable = true;
services.syncthing.enable = true; services.syncthing.enable = true;
} }