Some changes :p

This commit is contained in:
Henry Hiles 2023-10-30 19:54:04 -04:00
parent 4613bc2e9b
commit a701e1a2c9
4 changed files with 27 additions and 25 deletions

26
flake.lock generated
View file

@ -203,11 +203,11 @@
]
},
"locked": {
"lastModified": 1698479159,
"narHash": "sha256-rJHBDwW4LbADEfhkgGHjKGfL2dF44NrlyXdXeZrQahs=",
"lastModified": 1698670511,
"narHash": "sha256-jQIu3UhBMPHXzVkHQO1O2gg8SVo5lqAVoC6mOaLQcLQ=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "f92a54fef4eacdbe86b0a2054054dd58b0e2a2a4",
"rev": "8e5416b478e465985eec274bc3a018024435c106",
"type": "github"
},
"original": {
@ -245,11 +245,11 @@
]
},
"locked": {
"lastModified": 1698541868,
"narHash": "sha256-oaNUQMJ/zYvKkB1wI/pcPq4cf/a+c5etZWKZ8ZAg2V0=",
"lastModified": 1698697174,
"narHash": "sha256-OlGTQvq3gXHI4AhUIBcJOps0LDSydvWUFCGDuHc2S/k=",
"owner": "fufexan",
"repo": "nix-gaming",
"rev": "53ca82dfa2c65ddbf857ef07889ff39c8f80a35a",
"rev": "61c53f18d78d5644f77b16be9365b764d951e258",
"type": "github"
},
"original": {
@ -294,17 +294,17 @@
},
"nixpkgs-local": {
"locked": {
"lastModified": 1698614993,
"lastModified": 1698689470,
"narHash": "sha256-n9AU5+F66M9L+K+nuHd00I5ByGBUJIIJZKGj8L44+Kw=",
"ref": "refs/heads/init-monophony",
"rev": "420108508f734807d4daa8be0a36cc4b481756eb",
"rev": "14ff056b465b4591bd636d940cbca521acd710b3",
"revCount": 542334,
"type": "git",
"url": "file:/home/quadradical/Documents/Code/nixpkgs?branch=init-monophonty"
"url": "file:/home/quadradical/Documents/Code/nixpkgs?branch=init-monophony"
},
"original": {
"type": "git",
"url": "file:/home/quadradical/Documents/Code/nixpkgs?branch=init-monophonty"
"url": "file:/home/quadradical/Documents/Code/nixpkgs?branch=init-monophony"
}
},
"nixpkgs_2": {
@ -331,11 +331,11 @@
"utils": "utils"
},
"locked": {
"lastModified": 1698586943,
"narHash": "sha256-9fmlYZI53maNNgfQnDRkAXWsLS5PEX2055poufAUITY=",
"lastModified": 1698649388,
"narHash": "sha256-/YuZcADMdhWf3L2ed8TCFuY2Dgrh1s4dYaLiC8xuz/4=",
"owner": "wamserma",
"repo": "flake-programs-sqlite",
"rev": "65c9c3d0d48b6e8f9eeaa63a88ac6d1dc9a71284",
"rev": "8ff45ba74f816160384f5d970de62bb0270dff06",
"type": "github"
},
"original": {

View file

@ -2,7 +2,7 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
stylix.url = "github:danth/stylix";
nixpkgs-local.url = "git+file:/home/quadradical/Documents/Code/nixpkgs?branch=init-monophonty";
nixpkgs-local.url = "git+file:/home/quadradical/Documents/Code/nixpkgs?branch=init-monophony";
firefox-gnome-theme = {
url = "github:rafaelmardojai/firefox-gnome-theme";
flake = false;

View file

@ -1,12 +1,13 @@
wayland.windowManager.sway = {
enable = true;
config = rec {
modifier = "Mod4";
# Use kitty as default terminal
terminal = "kitty";
startup = [
# Launch Firefox on start
{command = "firefox";}
];
{pkgs, ...}: {
wayland.windowManager.sway = {
enable = true;
package = pkgs.swayfx;
config = {
modifier = "Mod4";
# Use kitty as default terminal
terminal = "kitty";
startup = [
];
};
};
};
}

View file

@ -23,5 +23,6 @@
../home-manager/firefox.nix
../home-manager/neofetch.nix
../home-manager/mangohud.nix
# ../home-manager/sway.nix
];
}