diff --git a/flake.lock b/flake.lock index b9b329e..ea6ed46 100644 --- a/flake.lock +++ b/flake.lock @@ -25,11 +25,11 @@ ] }, "locked": { - "lastModified": 1719418488, - "narHash": "sha256-Hu75KIbGLJA8qe42rO5WkRQ+E+BuzjS42bNEZcy9zT8=", + "lastModified": 1721534365, + "narHash": "sha256-XpZOkaSJKdOsz1wU6JfO59Rx2fqtcarQ0y6ndIOKNpI=", "owner": "nix-community", "repo": "home-manager", - "rev": "607f969f5dca2dc100cbc53e24ab49ac24ef8987", + "rev": "635563f245309ef5320f80c7ebcb89b2398d2949", "type": "github" }, "original": { @@ -47,11 +47,11 @@ "rust-overlay": "rust-overlay" }, "locked": { - "lastModified": 1719422193, - "narHash": "sha256-2qrVg5GSBmrj4vprXpS+lDGei2o4ezcFWxTK3/yomog=", + "lastModified": 1721434139, + "narHash": "sha256-rgqXubo9LD5IX+iNeX1W6HRIJLvv8RpiAyLBER6JK4A=", "owner": "martinvonz", "repo": "jj", - "rev": "35e0e4d133b0724d2be53fac28b2fa0bdc77d759", + "rev": "8df7857706cb2e7992270b00df52c9a753b42c09", "type": "github" }, "original": { @@ -83,11 +83,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1719254875, - "narHash": "sha256-ECni+IkwXjusHsm9Sexdtq8weAq/yUyt1TWIemXt3Ko=", + "lastModified": 1721379653, + "narHash": "sha256-8MUgifkJ7lkZs3u99UDZMB4kbOxvMEXQZ31FO3SopZ0=", "owner": "nixos", "repo": "nixpkgs", - "rev": "2893f56de08021cffd9b6b6dfc70fd9ccd51eb60", + "rev": "1d9c2c9b3e71b9ee663d11c5d298727dace8d374", "type": "github" }, "original": { @@ -99,11 +99,11 @@ }, "nixpkgs-stable": { "locked": { - "lastModified": 1719234068, - "narHash": "sha256-1AjSIedDC/aERt24KsCUftLpVppW61S7awfjGe7bMio=", + "lastModified": 1720535198, + "narHash": "sha256-zwVvxrdIzralnSbcpghA92tWu2DV2lwv89xZc8MTrbg=", "owner": "nixos", "repo": "nixpkgs", - "rev": "90bd1b26e23760742fdcb6152369919098f05417", + "rev": "205fd4226592cc83fd4c0885a3e4c9c400efabb5", "type": "github" }, "original": { @@ -115,11 +115,11 @@ }, "nur": { "locked": { - "lastModified": 1719427611, - "narHash": "sha256-MYurgW19a5TFlL1zqPWG73TllIOdUKGstGHPq5c3adw=", + "lastModified": 1721558485, + "narHash": "sha256-CCT9Iwu9a9uYpD617EA0ocWuQxDPmlMU70OrhbvmUrw=", "owner": "nix-community", "repo": "NUR", - "rev": "9dfa9e7493fea727c02b7b1e2a7f96cd13066022", + "rev": "69fbaf6c7b906fe1580b683bf9be8d49acd349a4", "type": "github" }, "original": { diff --git a/home-manager/vscode.nix b/home-manager/vscode.nix index 1aed0e6..710513d 100644 --- a/home-manager/vscode.nix +++ b/home-manager/vscode.nix @@ -54,7 +54,6 @@ jnoortheen.nix-ide timonwong.shellcheck mads-hartmann.bash-ide-vscode - mgt19937.typst-preview ms-azuretools.vscode-docker ms-python.python ms-vscode-remote.remote-ssh diff --git a/nixos/configuration.nix b/nixos/configuration.nix index f04a96e..5e1bc80 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -169,8 +169,6 @@ in # Shows notification for `net.nuetzlich.SystemNotifications.Notify` D-Bus messages services.systembus-notify.enable = true; - # Enable sound with pipewire. - sound.enable = true; hardware.pulseaudio.enable = false; security.rtkit.enable = true; services.pipewire = { @@ -194,7 +192,6 @@ in useRoutingFeatures = "both"; }; - # TODO: Configure your system-wide user settings (groups, etc), add more users as needed. users = { users = { nora = { @@ -202,7 +199,6 @@ in isNormalUser = true; home = "/home/nora"; openssh.authorizedKeys.keys = [ - # TODO: Add your SSH public key(s) here, if you plan on using SSH to connect "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIG0n1ikUG9rYqobh7WpAyXrqZqxQoQ2zNJrFPj12gTpP" ]; extraGroups = [ "wheel" "networkmanager" "audio" "libvirtd" ]; @@ -214,7 +210,7 @@ in }; extraGroups = { vboxusers = { - #members = [ "nils" ]; + #members = [ "nora" ]; }; }; };